    body {
        font-family: Calibri, sans-serif;
        color: navy;
	    border: 1px solid blue;
        width: 99%;
	    position: flex;
	    top: 0px;   
	    background-color: white;
	    padding: 0px; 
    
        }
    nav {
        display: block;
        background-color: white;
        position: flex;
        flex: 1;
    }
    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex: 1;
    }
    nav ul li {
        position: relative;
    }
    nav ul li a {
        display: block;
        padding: 14px 20px;
        color: navy;
        text-decoration: none;
        flex: 1;
    }
    nav ul li:hover {
        background-color: lightgreen;
    }
    /* Dropdown styles - previous position was absolute */
    nav ul li ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: lightgray;
        min-width: 180px;
        z-index: 1000;
    }
    nav ul li:hover ul {
        display: block;
    }
    nav ul li ul li {
        width: 100%;
    }
    nav ul li ul li a {
        padding: 10px;
    }
    /* Horizontal line under menu - previous background color was #ccc */
    hr {
        border: none;
        height: 1px;
        background-color: red;
        margin-top: 1px;
        box-shadow: 0 0 10px rgba(0,0,0,1);
        opacity: 0.5;
    }
    p {
	    text-align: justify;
    }
    h1, h2 {
        margin-left: 10px;
        position: flex;
    }
    h3  {
        color: red;
        font-weight: bold;
    }
    main {
	    position-top: 400px;
        width: 99%;
        background-color: navy;
	    color: white;
    	position: flex;  
        padding: 15px;
    }
    form {
            position: flex;
            background: #fff;
            margin: 10px;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,1);
            margin-top: 40px;
            margin-left: 10px;
            width: 50%;
        }
    label {
            display: block;
            margin-top: 10px;
            font-weight: bold;
	        color: black;	
        }
    input, textarea, select, button {
            width: 80%;
            padding: 10px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
	
    select {
	        Width: 35%;
	}
    fileupload {
        Width: 50%;
    }
	button {
            width: 15%;
	        background-color: #28a745;
            color: white;
            font-size: 16px;
            border: none;
            cursor: pointer;
            padding: 10px;
        }
    button:hover {
            background-color: #218838;
        }  
    .submit-review {
            
            width: 100%;
	        background-color: #28a745;
            color: white;
            font-size: 16px;
            border: none;
            cursor: pointer;
            padding: 13px;
        }
    .submit-review:hover {
            background-color: navy;
        }
    .Parentcontactdetails {
            display: flex;
            column-gap: 5px;
        }
    .login-container {
	        color: black;
            font-size: 20px;
            background-color: lightgray;
	}
    img {
        margin-top: 1px;
        float: center;
    }
    .right-half-background {
        background-image: url(marketplace2.jpg); /* Replace 'your-image.jpg' with your image path */
        background-repeat: no-repeat; /* Prevents the image from repeating */
        background-size: cover; /* Ensures the image covers the entire container while maintaining aspect ratio */
        background-position: center; /* Centers the image within the right half container */
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center;     /* Centers vertically */
        box-shadow: 0 0 10px rgba(0,0,0,1);
    
    /** Position the container to take up the right half of the viewport */
        position: absolute;
        left:800px;
        top: 209px;
        width: 46.5%;
        height: 105vh; /* Use viewport height to ensure it covers the full screen height */
        border: 1px solid green;
        border-radius: 10px;
        
    /* Add padding for better content display */
        border-radius: 4px;
        padding: -1px;
        box-sizing: border-box; 
        color: white; /* Example text color for readability */
    }
    .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            padding: 12px;
            margin-bottom: 20px;
            border-radius: 4px;
        }